home *** CD-ROM | disk | FTP | other *** search
/ Light & Shade: Niida Takashi / Light & Shade: Niida Takashi.iso / mac / WIN / PRINT.Dxr / 00161_docs.ls < prev    next >
Encoding:
Text File  |  1998-09-06  |  462 b   |  20 lines

  1. on mouseUp
  2.   cursor(4)
  3.   set doc to new(xtra("printomatic_lite"))
  4.   if not objectp(doc) then
  5.     exit
  6.   end if
  7.   setdocumentname(doc, "PrintOMatic Lite Documentation")
  8.   append(doc, sprite(2), member "illustration", castLib "documentation")
  9.   cursor(-1)
  10.   if word 1 of the text of the member of sprite the clickOn = "print" then
  11.     if dojobsetup(doc) then
  12.       updateStage()
  13.       print(doc)
  14.     end if
  15.   else
  16.     printpreview(doc)
  17.   end if
  18.   set doc to 0
  19. end
  20.